home *** CD-ROM | disk | FTP | other *** search
/ Freelog 117 / FreelogNo117-OctobreNovembre2013.iso / Programmation / jedit / jedit5.1.0install.exe / {app} / macros / C / Toggle_Header_Source.bsh < prev   
Text File  |  2013-07-28  |  7KB  |  214 lines

  1. /**
  2.     ToggleHeaderSource.bsh V1.6
  3.     by Alan Ezust
  4.     $Id: Toggle_Header_Source.bsh 22405 2012-10-26 17:13:58Z ezust $
  5.  
  6.     A jedit beanshell macro that toggles your current buffer
  7.     between the header file (.hh?) and the source file (.c(c|pp|xx)?).
  8.  
  9.     Enables you to switch the current text
  10.     buffer between C/C++ header and sourcecode
  11.     file. If the file does not already exist, it opens a new buffer
  12.     of that name for you.
  13.  
  14.     New to 1.2: If another buffer is already open with the requested
  15.     filename, it is selected, even if located in another directory.
  16.  
  17.     New to 1.3: If another EditPane is already open with the
  18.     requested buffer, it is selected and focused.
  19.  
  20.     New to 1.4: Instead of throwing an exception, treats
  21.     files with no extension as header files, and tries to
  22.     open .cpp file with same basename. Searches in
  23.     current project for header/source files too.
  24.  
  25.     New to 1.5: Supports multiple, default header extensions.
  26.  
  27.     New to 1.6: Does nothing when not in the correct mode (c or c++)
  28.     Fixed a bug where it did not work without projectviewer installed. 
  29.     
  30.     This program is free software; you can redistribute it and/or
  31.     modify it under the terms of the GNU General Public License
  32.     as published by the Free Software Foundation; either version 2
  33.     of the License, or any later version.
  34.  
  35.     This program is distributed in the hope that it will be useful,
  36.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  37.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  38.     GNU General Public License for more details.
  39.  
  40.     You should have received a copy of the GNU General Public License
  41.     along with the jEdit program; if not, write to the Free Software
  42.     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  43.  
  44.  */
  45.  
  46. import projectviewer.*;
  47. import projectviewer.vpt.*;
  48. import java.util.*;
  49.  
  50. /* Set these properties via the console beanshell to something else if cpp,h are not
  51.    your favorite extensions. e.g.:
  52.    jEdit.setProperty("default.extension.c", "cc");
  53.    jEdit.setProperty("default.extension.h", "hh");
  54. */
  55. String defaultSourceExtension = jEdit.getProperty("default.extension.c", "cpp");
  56. String defaultHeaderExtension = jEdit.getProperty("default.extension.h", "h");
  57. String[] sourceExtensions = new String[]{"cpp", "cxx", "cc", "c"};
  58. String[] headerExtensions = new String[]{"h", "hh", "hpp", "hxx"};
  59.  
  60. /** Looks for an existing file in the current project, if ProjectViewer is
  61.    installed and a 'current' project exists.
  62.    @return the absolute path if found, NULL if not.
  63.    */
  64. String findBufferInProject(String fileName) {
  65.     fileName = MiscUtilities.getFileName(fileName);
  66.     VPTProject project = ProjectViewer.getActiveProject(view);
  67.     Collection nodes = project.getOpenableNodes();
  68.     for (VPTNode node: nodes) {
  69.         String path = node.getNodePath();
  70.         if ((path.endsWith("\\" + fileName)) || (path.endsWith("/" + fileName)))
  71.             return path;
  72.     }
  73.     return null;
  74. }
  75.  
  76. /** Looks for an existing file in the same directory, or
  77.    an already open buffer with the given name in another directory.
  78.    @return the absolute path if found, NULL if not.
  79.    */
  80. String findBuffer(String fileName) {
  81.     File f = new File(fileName);
  82.     if (f.canRead()) return f.getPath();
  83.     String fn2 = f.getName();
  84.     Buffer[] bufs = jEdit.getBuffers();
  85.     bn = bufs.length;
  86.     for (int i=0; i<bn; ++i) {
  87.         Buffer b = bufs[i];
  88.         if (b.getName().equals(fn2)) return b.getPath();
  89.     }
  90.     return null;
  91. }
  92.  
  93. /** Returns true if PV is installed and a project is selected (current)
  94. */
  95. boolean activeProjectExists()
  96. {
  97.     EditPlugin p = jEdit.getPlugin("projectviewer.ProjectPlugin",false);
  98.     if(p == null)
  99.         return false;
  100.     VPTProject project = ProjectViewer.getActiveProject(view);
  101.     return (project != null);
  102. }
  103.  
  104. /** Given a header file, iterates through all sourcefile extensions checking if the sourcefile exists.
  105.    @return the absolute path of the sourcefile for this header
  106. */
  107.  
  108. String getSourceFile(String baseName)
  109. {
  110.     int numExt = sourceExtensions.length;
  111.     // First try open buffers
  112.     for (int i=numExt-1; i>=0; --i)
  113.     {
  114.         String ext = sourceExtensions[i];
  115.         String tryFile = baseName + "." + ext;
  116.         String path = findBuffer(tryFile);
  117.         if (path != null) return path;
  118.     }
  119.     // Then try current project
  120.     if (activeProjectExists())
  121.     {
  122.         for (int i=numExt-1; i>=0; --i)
  123.         {
  124.             String ext = sourceExtensions[i];
  125.             String tryFile = baseName + "." + ext;
  126.             String path = findBufferInProject(tryFile);
  127.             if (path != null) return path;
  128.         }
  129.     }
  130.     return baseName + "." + defaultSourceExtension;
  131. }
  132.  
  133. String getHeaderFile(String baseName)
  134. {
  135.     int numExt = headerExtensions.length;
  136.     for (int i=numExt-1; i>=0; --i)
  137.     {
  138.         String ext = headerExtensions[i];
  139.         String tryFile = baseName + "." + ext;
  140.         String path = findBuffer(tryFile);
  141.         if (path != null) return path;
  142.     }
  143.  
  144.     // Try no extension at all:
  145.     String path = findBuffer(baseName);
  146.     if (path != null) return path;
  147.  
  148.     // Then try current project
  149.     if (activeProjectExists()) {
  150.         for (int i=numExt-1; i>=0; --i)
  151.         {
  152.             String ext = headerExtensions[i];
  153.             String tryFile = baseName + "." + ext;
  154.             path = findBufferInProject(tryFile);
  155.             if (path != null) return path;
  156.         }
  157.     // No extension at all in project:
  158.         path = findBufferInProject(baseName);
  159.         if (path != null) return path;
  160.     }
  161.     return baseName + "." + defaultHeaderExtension;
  162. }
  163.  
  164. boolean isSourceFile(String extension)
  165. {
  166.     for (int i=0; i<sourceExtensions.length; ++i) {
  167.         if (extension.equals(sourceExtensions[i])) return true;
  168.     }
  169.     return false;
  170. }
  171.  
  172.  
  173. void toggleHeaderSource()
  174. {
  175.     String mode = buffer.getMode().toString();
  176.     if (! (mode.equals("c") || mode.equals("c++"))) return;
  177.     String currentFile = buffer.getPath();
  178.     int pos = currentFile.lastIndexOf('.');
  179.     String path = null;
  180.     if (pos < 0) {
  181.         path = getSourceFile(currentFile);
  182.     }
  183.     else {
  184.         String baseName = currentFile.substring(0, pos);
  185.         String extension = currentFile.substring(pos+1);
  186.         if (isSourceFile(extension))
  187.         {
  188.             path = getHeaderFile(baseName);
  189.             if (path == null)
  190.                 path = baseName + "." + defaultHeaderExtension;
  191.         } 
  192.         else
  193.         {
  194.             path = getSourceFile(baseName);
  195.         }
  196.     }
  197.     if (path == null) return;
  198.     // see if it is already open in another editpane
  199.     panes = view.getEditPanes();
  200.     if (panes.length > 1)
  201.         for (int i=panes.length - 1; i >= 0; --i) {
  202.             buf = panes[i].getBuffer();
  203.             if (buf.getName().equals(path)
  204.             || buf.getPath().equals(path)) {
  205.                 panes[i].focusOnTextArea();
  206.                 return;
  207.             }
  208.     }
  209.     jEdit.openFile(view, path);
  210. }
  211.  
  212.  
  213. toggleHeaderSource();
  214.